home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1997 / MacHack 1997.toast / Hacks / Hacks ’93 / Talking Compiler / talktest.c < prev    next >
C/C++ Source or Header  |  1993-06-17  |  536b  |  35 lines

  1. /* a comment */
  2.  
  3. #include <Devices.h>
  4. #include "UMacApp.h"
  5.  
  6. main() { SysBeep(20); exit(0); }
  7.  
  8. pizza(int a) { return init_init() + Moof(); }
  9.  
  10. draw_stooges()
  11. {
  12.     int i;
  13.     for (i = 1; i < 3; ++i) draw();
  14. }
  15.  
  16. iinit_init() { int glob = pizza(4); }
  17.  
  18. subr()
  19. {
  20.     ParmBlkPtr paramBlock;
  21.     /* Use this everywhere! */
  22.     FInitQueue();
  23.     PBKillIOSync(paramBlock);
  24.     toast_files();
  25. }
  26.  
  27. toast_files()
  28. {
  29.     HParmBlkPtr paramBlock;
  30.  
  31.     SetZone(nil);
  32.     PBHOpenDF(paramBlock, 1);  PBHOpenRF(paramBlock, 1);
  33.     PBHGetVInfoAsync(paramBlock);  PBHDeleteAsync(paramBlock);
  34. }
  35.